home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 2 / CD Loisirs 02 / CD Loisirs CD 002.mdf / pc / nympheas / sources / s46_041dxme.k < prev    next >
Encoding:
Text File  |  1994-01-01  |  2.2 KB  |  153 lines

  1. object S46_041DXME is MEDIADISTRIBUTOR
  2. with
  3.     Duration is -1;
  4.     X is 0; Y is 0; Width is 640; Height is 480;
  5.     Items is [
  6.         S46A1_BOUTON_MUSIQUE,
  7.         S46A2_BOUTON_TEXTE,
  8.         S46A3_BOUTON_OEUVRE,
  9.         S46A4_BOUTON_STOP,
  10.         S46A6_ALBUM_SUITE,
  11.         S46A7_S40A_WAV,
  12.         S46A8_041_PIC
  13.     ];
  14. end;
  15.  
  16. object S46A1_BOUTON_MUSIQUE is MEDIADELEGATOR
  17. has
  18.     
  19.     OffScreen()
  20.         do
  21.             self.Enable(true);
  22.         end;
  23.     
  24.     MouseUp(theX, theY)
  25.         do
  26.             APPLICATION.GoTo(S498_ECRAN_FIN);
  27.         end;
  28.     
  29. with
  30.     Duration is -1;
  31.     X is 245; Y is 204; Width is 47; Height is 47;
  32. end;
  33.  
  34. object S46A2_BOUTON_TEXTE is MEDIADELEGATOR
  35. has
  36.     
  37.     OffScreen()
  38.         do
  39.             self.Enable(true);
  40.             self.Show(true);
  41.         end;
  42.     
  43.     MouseUp(theX, theY)
  44.         do
  45.             APPLICATION.GoTo(S498_ECRAN_FIN);
  46.         end;
  47.     
  48. with
  49.     Duration is -1;
  50.     X is 244; Y is 262; Width is 49; Height is 48;
  51. end;
  52.  
  53. object S46A3_BOUTON_OEUVRE is MEDIADELEGATOR
  54. has
  55.     
  56.     OffScreen()
  57.         do
  58.             self.Enable(true);
  59.             self.Show(true);
  60.         end;
  61.     
  62.     MouseUp(theX, theY)
  63.         do
  64.             APPLICATION.GoTo(S498_ECRAN_FIN);
  65.         end;
  66.     
  67. with
  68.     Duration is -1;
  69.     X is 245; Y is 320; Width is 47; Height is 47;
  70. end;
  71.  
  72. object S46A4_BOUTON_STOP is MEDIADELEGATOR
  73. has
  74.     
  75.     OffScreen()
  76.         do
  77.             self.Enable(true);
  78.             self.Show(true);
  79.         end;
  80.     
  81.     MouseUp(theX, theY)
  82.         do
  83.             APPLICATION.GoBack(MEDIADISTRIBUTOR0);
  84.         end;
  85.     
  86. with
  87.     Duration is -1;
  88.     X is 537; Y is 431; Width is 90; Height is 36;
  89. end;
  90.  
  91. object S46A6_ALBUM_SUITE is MEDIADELEGATOR
  92. has
  93.     
  94.     OffScreen()
  95.         do
  96.             self.Enable(true);
  97.             self.Show(true);
  98.         end;
  99.     
  100.     MouseUp(theX, theY)
  101.         do
  102.             APPLICATION.GoTo(S158_010MONE);
  103.         end;
  104.     
  105. with
  106.     Duration is -1;
  107.     X is 539; Y is 392; Width is 87; Height is 28;
  108. end;
  109.  
  110. object S46A7_S40A_WAV is MEDIADELEGATOR
  111. has
  112.     
  113.     OffScreen()
  114.         do
  115.             self.Enable(true);
  116.             self.Show(true);
  117.             self.Run(false);
  118.         end;
  119.     
  120. with
  121.     Target is C314_S40A_WAV;
  122.     Duration is 0;
  123.     X is 49; Y is 220; Width is 32; Height is 24;
  124. end;
  125.  
  126. object S46A8_041_PIC is MEDIADELEGATOR
  127. has
  128.     
  129.     OffScreen()
  130.         do
  131.             self.GoToBeginning();
  132.             self.Run(true);
  133.             TRANSITION.Set(WipeTop, 300);
  134.             self.Show(true);
  135.         end;
  136.     
  137.     OnScreen()
  138.         do
  139.             S46A7_S40A_WAV.Run(true);
  140.         end;
  141.     
  142.     Finished()
  143.         do
  144.             APPLICATION.GoTo(S158_010MONE);
  145.         end;
  146.     
  147. with
  148.     Target is C304_041_PIC;
  149.     Duration is 1200;
  150.     X is 0; Y is 0; Width is 640; Height is 480;
  151. end;
  152.  
  153.